Batch 3 - Class 253 - Recursion II

(zoom)

Pre-Class Exercise (Covered in class)

Attendance    Advay, Vansh, Raghav, Angad, Ayush, Aneesh, Shikhar, Rohan, Rehaan, SiddharthT, Arjun, Harshiet, Vivaan, Aarkin

Class Notes: (Repeat from Class 145)

Review the concept of Induction:

Review Recursion - Recursion means solving by self reference. We look at IsAJew, and Tower of Hanoi problems. What was the Computational elements?

The Gossip Problem - Everyone knows something that nobody else knows. But everybody else wants to know! That's why we need gossip. To make that a bit more mathematical: person #1, 2, 3, ..., n each know a unique piece of information. When two people talk, they “gossip”, exchanging all the pieces of information they have acquired. How many conversations (with two people at a time) are necessary in order that everyone will know all the information? 
Instructor Notes: Discuss the normal solution (cyclical) and then recursive f(n+1)=f(n)+2

Breaking a Dollar
Our first problem is to figure out how many ways there are to make change for a dollar.

Homework:           

References:
http://jrmf.org/problems/Gossip.pdf
https://mvtrinh.wordpress.com/2011/12/26/change-for-a-dollar/
http://jrmf.org/problems/ChangeForADollar.pdf